| 500 |
How can I select a column
With AxG2antt1 .MarkSearchColumn = False .SingleSel = False .FullRowSelect = EXG2ANTTLib.CellSelectEnum.exRectSel .Columns.Add("Column1").Selected = True .Columns.Add("Column2") With .Items .CellValue(.AddItem("One"),1) = "One" End With With .Items .CellValue(.AddItem("Two"),1) = "Two" End With .Items.SelectAll() End With |
| 499 |
How can I avoid focusing a new cell, when user presses an arrow, page, home or end key, while the editor is opened
With AxG2antt1 .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exLeftArrow,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exRightArrow,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exUpArrow,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exDownArrow,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exHomeKey,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exEndKey,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exPageUpKey,0) .set_DefaultEditorOption(EXG2ANTTLib.EditorOptionEnum.exPageDownKey,0) .Columns.Add("Edit").Editor.EditType = EXG2ANTTLib.EditTypeEnum.EditType .Columns.Add("Edit").Editor.EditType = EXG2ANTTLib.EditTypeEnum.EditType With .Items .CellValue(.AddItem(0),1) = 1 End With With .Items .CellValue(.AddItem(2),1) = 3 End With End With |
| 498 |
How can I expand predefined items in a drop down list editor as I type
|
| 497 |
How can I add an extra button to a date picker editor
|
| 496 |
How can I add an extra button to a spin editor
|
| 495 |
How can I remove or delete the buttons in the editor
|
| 494 |
How can I hide the buttons in the editor
|
| 493 |
How can I change the width of the buttons in the editor
|
| 492 |
How can I add extra buttons to an editor
|
| 491 |
is there any function to specify the number of rows / items being visible in a drop down list editor
|
| 490 |
How can I change the border for a drop down editor
|
| 489 |
How can I remove a predefined item in a drop down editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorListType .Option(EXG2ANTTLib.EditorOptionEnum.exColorListShowName) = True .RemoveItem(255) End With .Items.AddItem(255) .Items.AddItem(65280) End With |
| 488 |
How can I remove or clear all predefined items in a drop down editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorListType .ClearItems() .AddItem(255,"Red Color") End With .Items.AddItem(255) End With |
| 487 |
How can I center the predefined items in a drop down editor editor
|
| 486 |
How can I right align the items in a drop down editor editor
|
| 485 |
How can I specify the width of the drop down editor
|
| 484 |
How can hide the drop down button for an editor
|
| 483 |
How can assign a tooltip to a drop down list editor
|
| 482 |
How can I lock, disable make read only an editor
|
| 481 |
How can I sort the items in a drop down list editor
|
| 480 |
How can I expand an item in the tree or a hierarchy of a drop down editor
|
| 479 |
How can I display a tree or a hierarchy in a drop down editor
|
| 478 |
How can I look for items that includes the typed characters in a drop down list editor
|
| 477 |
How can I keep the selection background color while editor is visible
|
| 476 |
How can I select from a drop down list the editor, when the user starts typing in the editor, while it is closed and focused
|
| 475 |
How can I automatically drop down the list editor, when the user starts typing in the editor
|
| 474 |
How can I add a Font editor
|
| 473 |
How can I change the visual appearance for the buttons in the calculator editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CalculatorType .Option(EXG2ANTTLib.EditorOptionEnum.exCalcPictureUp) = AxG2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") .Option(EXG2ANTTLib.EditorOptionEnum.exCalcPictureDown) = AxG2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)") End With .Items.AddItem(10) End With |
| 472 |
How can I customize the caption of buttons in the calculator editor
|
| 471 |
How can I customize the caption of buttons in the calculator editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CalculatorType .Option(EXG2ANTTLib.EditorOptionEnum.exCalcButtons) = "0;1;2;3;4;5;6;7;8;9" End With .Items.AddItem(10) End With |
| 470 |
How can I specify the width and height of the buttons in the calculator editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CalculatorType .Option(EXG2ANTTLib.EditorOptionEnum.exCalcButtonWidth) = 32 .Option(EXG2ANTTLib.EditorOptionEnum.exCalcButtonHeight) = 32 End With .Items.AddItem(10) End With |
| 469 |
How can I change the "Cannot divide by zero" message that shows in the calculator editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CalculatorType .Option(EXG2ANTTLib.EditorOptionEnum.exCalcCannotDivideByZero) = "Divizion by zero" End With .Items.AddItem(10) End With |
| 468 |
How can I enable or disable executing operations while the calculator editor is focused and closed
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CalculatorType .Option(EXG2ANTTLib.EditorOptionEnum.exCalcExecuteKeys) = False End With .Items.AddItem(10) End With |
| 467 |
How can I add a calculator editor
|
| 466 |
How can I edit a number between a range or interval
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Numeric = EXG2ANTTLib.NumericEnum.exInteger .Option(EXG2ANTTLib.EditorOptionEnum.exSpinStep) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMin) = 5 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMax) = 15 End With .Items.AddItem(10) End With |
| 465 |
How can I hide or show the spin in the slider or track bar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Option(EXG2ANTTLib.EditorOptionEnum.exSpinStep) = 0 End With .Items.AddItem(10) End With |
| 464 |
How can I add a slider or track bar editor, with a fixed size
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = 64 End With .Items.AddItem(10) End With |
| 463 |
How can I add a slider or track bar editor, so it covers half of the cell
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = -50 End With .Items.AddItem(10) End With |
| 462 |
How can I add a slider or track bar editor, so it covers the full cell
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Slider").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = -100 End With .Items.AddItem(10) End With |
| 461 |
How can I add a slider or track bar editor within a range or interval of numbers
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Spin from 5 to 15").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Numeric = EXG2ANTTLib.NumericEnum.exInteger .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMin) = 5 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMax) = 15 End With .Items.AddItem(10) End With |
| 460 |
How can I add a slider or track bar editor within a range or interval of float numbers
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Spin from 5 to 15").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Numeric = EXG2ANTTLib.NumericEnum.exFloat .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMin) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMax) = 1 .Option(EXG2ANTTLib.EditorOptionEnum.exSpinStep) = "0.01" .Option(EXG2ANTTLib.EditorOptionEnum.exSliderStep) = "0.01" End With .Items.AddItem("0.3") End With |
| 459 |
How can I add a spin editor within a range or interval of float numbers
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Spin from 5 to 15").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Numeric = EXG2ANTTLib.NumericEnum.exFloat .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMin) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMax) = 1 .Option(EXG2ANTTLib.EditorOptionEnum.exSpinStep) = "0.01" End With .Items.AddItem("0.3") End With |
| 458 |
How can I add a spin editor within a range or interval of numbers
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Spin from 5 to 15").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SliderType .Numeric = EXG2ANTTLib.NumericEnum.exInteger .Option(EXG2ANTTLib.EditorOptionEnum.exSliderWidth) = 0 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMin) = 5 .Option(EXG2ANTTLib.EditorOptionEnum.exSliderMax) = 15 End With .Items.AddItem(10) End With |
| 457 |
How can I add a slider or track bar editor
|
| 456 |
I have check box column, but the check-boxes looks disabled. What can I do
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Check").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.CheckValueType .Option(EXG2ANTTLib.EditorOptionEnum.exCheckValue2) = 1 End With With .Items .AddItem(False) .AddItem(True) .AddItem(False) End With End With |
| 455 |
How do I add check box column, so the cell value is changed as I click the cells
With AxG2antt1 .MarkSearchColumn = False With .Columns.Add("C") .Width = 18 .AllowSizing = False With .Editor .EditType = EXG2ANTTLib.EditTypeEnum.CheckValueType .Option(EXG2ANTTLib.EditorOptionEnum.exCheckValue2) = 1 End With End With .Columns.Add("Text") With .Items .CellValue(.AddItem(False),1) = "Check 1" .CellValue(.AddItem(True),1) = "Check 2" .CellValue(.AddItem(False),1) = "Check 3" End With End With |
| 454 |
How do I add check box column, so the cell value is changed as I click the cells
|
| 453 |
How do I disable adding new lines using the ENTER key in a memo or a multiple lines edit control
|
| 452 |
How do I add a vertical scroll bar for a memo or a multiple lines edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoDropDownType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoVScrollBar) = True End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th" & _ "e line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 451 |
How do I add a horizontal scroll bar for a memo or a multiple lines edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoDropDownType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoHScrollBar) = True End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th" & _ "e line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 450 |
How can I specify the width or the height for a drop down memo or a multiple lines edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoDropDownType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoDropDownWidth) = 256 .Option(EXG2ANTTLib.EditorOptionEnum.exMemoDropDownHeight) = 64 End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 449 |
How do I add a drop down memo or a multiple lines edit control
|
| 448 |
How do I add a color list editor with my own or custom colors
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorListType .Option(EXG2ANTTLib.EditorOptionEnum.exColorListShowName) = True .ClearItems() .AddItem(255,"Red Color") .AddItem(16711680,"Blue Color") .AddItem(65280,"Green Color") End With .Items.AddItem(255) End With |
| 447 |
How do I add a color list editor with my own or custom colors
|
| 446 |
How can I show the color's name in a color list editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorListType .Option(EXG2ANTTLib.EditorOptionEnum.exColorListShowName) = True End With .Items.AddItem(255) End With |
| 445 |
How do I add a color list editor
|
| 444 |
How can I access my own custom or ActiveX editor
|
| 443 |
How can I add my own custom or ActiveX editor
|
| 442 |
How can I add a hyperlink editor
|
| 441 |
How can I add a drop down editor, that allows only predefined values, but still being able to edit and select
|
| 440 |
How can I show or hide the rectangle arround progress bar editor
|
| 439 |
How can I hide the caption / percent in the progress bar editor
Dim var_Editor With AxG2antt1 .SelForeColor = RGB(0,0,0) .SelBackColor = RGB(128,255,255) var_Editor = .Columns.Add("Progress").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ProgressBarType .Option(EXG2ANTTLib.EditorOptionEnum.exProgressBarAlignment) = -1 End With .Items.AddItem(33) End With |
| 438 |
How can I align the caption in the center of the progress bar editor
Dim var_Editor With AxG2antt1 .SelForeColor = RGB(0,0,0) .SelBackColor = RGB(128,255,255) var_Editor = .Columns.Add("Progress").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ProgressBarType .Option(EXG2ANTTLib.EditorOptionEnum.exProgressBarAlignment) = 1 End With .Items.AddItem(33) End With |
| 437 |
How can I align the caption to the right in the progress bar editor
Dim var_Editor With AxG2antt1 .SelForeColor = RGB(0,0,0) .SelBackColor = RGB(128,255,255) var_Editor = .Columns.Add("Progress").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ProgressBarType .Option(EXG2ANTTLib.EditorOptionEnum.exProgressBarAlignment) = 2 End With .Items.AddItem(33) End With |
| 436 |
How can I change the background color for a progress bar editor
Dim var_Editor With AxG2antt1 .SelForeColor = RGB(0,0,0) .SelBackColor = RGB(128,255,255) var_Editor = .Columns.Add("Progress").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ProgressBarType .Option(EXG2ANTTLib.EditorOptionEnum.exProgressBarBackColor) = 255 End With .Items.AddItem(33) End With |
| 435 |
How can I add a progress bar editor
With AxG2antt1 .SelForeColor = RGB(0,0,0) .SelBackColor = RGB(128,255,255) .Columns.Add("Progress").Editor.EditType = EXG2ANTTLib.EditTypeEnum.ProgressBarType .Items.AddItem(33) End With |
| 434 |
How can I add a button editor
|
| 433 |
How can I show or hide the type of the OLE Object for Photo or a Picture editor
|
| 432 |
How can I add a Photo or a Picture editor
|
| 431 |
How can I hide or show the "System" page in the color editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorType .Option(EXG2ANTTLib.EditorOptionEnum.exColorShowSystem) = False End With .Items.AddItem(255) End With |
| 430 |
How can I hide or show the "Palette" page in the color editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Color").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.ColorType .Option(EXG2ANTTLib.EditorOptionEnum.exColorShowPalette) = False End With .Items.AddItem(255) End With |
| 429 |
How do I add a color editor
|
| 428 |
How do I change the masking character
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Mask").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MaskType .Mask = "###" .MaskChar = 48 End With .Items.AddItem("") End With |
| 427 |
How do I mask an IP
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("IP").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MaskType .Mask = "{0,255}\.{0,255}\.{0,255}\.{0,255}" End With .Items.AddItem("1.2.3.4") End With |
| 426 |
How do I add a mask editor
|
| 425 |
How to show or hide the week numbers header in a drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateWeeksHeader) = True End With .Items.AddItem("Today") End With |
| 424 |
How do I show or hide the bottom scroll bar in the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateShowScroll) = False End With .Items.AddItem("Today") End With |
| 423 |
How do highlight the "Today" date is the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateMarkToday) = True End With .Items.AddItem("Today") End With |
| 422 |
How do I show or hide the "Today" button is the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateShowTodayButton) = False End With .Items.AddItem("Today") End With |
| 421 |
How to specify the first day of the week in the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateFirstWeekDay) = 1 End With .Items.AddItem("Today") End With |
| 420 |
How to specifies the shortcut for the weekdays to be displayed in the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateWeekDays) = "Du Lu Ma Mi Jo Vi Si" End With .Items.AddItem("Today") End With |
| 419 |
How can I change the name of the months in the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateMonths) = "Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre" End With .Items.AddItem("Today") End With |
| 418 |
Can I change the "Today" caption being displayed in the drop down date picker calendar editor
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Date").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.DateType .Option(EXG2ANTTLib.EditorOptionEnum.exDateTodayCaption) = "Azi" End With .Items.AddItem("Today") End With |
| 417 |
How can allow empty date to drop down date picker control or a calendar control
|
| 416 |
How can I a drop down date picker control or a calendar control
|
| 415 |
How can I have an OR combination of my bit values, something like a check-box list editor
|
| 414 |
How do I stop resizing the memo or a multiple lines edit control, while the user types
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoAutoSize) = False .Option(EXG2ANTTLib.EditorOptionEnum.exMemoHScrollBar) = True .Option(EXG2ANTTLib.EditorOptionEnum.exMemoVScrollBar) = True End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th" & _ "e line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 413 |
How do I add a horizontal scroll bar for a memo or a multiple lines edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoHScrollBar) = True End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th" & _ "e line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 412 |
How do I add a vertical scroll bar for a memo or a multiple lines edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.MemoType .Option(EXG2ANTTLib.EditorOptionEnum.exMemoVScrollBar) = True End With With .Items .CellSingleLine(.AddItem("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th" & _ "e line, and get it displayed on multiple lines."),0) = EXG2ANTTLib.CellSingleLineEnum.exCaptionWordWrap End With End With |
| 411 |
How do I add a memo or a multiple lines edit control
|
| 410 |
How to specify the proposed change when the user clicks a spin control.
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SpinType .Numeric = EXG2ANTTLib.NumericEnum.exInteger .Option(EXG2ANTTLib.EditorOptionEnum.exSpinStep) = 10 End With With .Items .AddItem(0) .AddItem(10) .AddItem(20) End With End With |
| 409 |
How do I add a spin editor that allows only integer values
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.SpinType .Numeric = EXG2ANTTLib.NumericEnum.exInteger End With With .Items .AddItem(0) .AddItem(1) .AddItem(2) End With End With |
| 408 |
How do I add a spin editor
|
| 407 |
How do I specify in a drop down list editor, that I do not want to have predefined icon
|
| 406 |
How do I add a drop down editor, that allows only predefined values
|
| 405 |
How to allow the editor to work on insert or overtype mode
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.EditType .Option(EXG2ANTTLib.EditorOptionEnum.exEditAllowOverType) = True .Option(EXG2ANTTLib.EditorOptionEnum.exEditOverType) = True End With With .Items .AddItem("000") .AddItem("111") .AddItem("222") End With End With |
| 404 |
How to set foreground color for a locked, or read only edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.EditType .Locked = True .Option(EXG2ANTTLib.EditorOptionEnum.exEditLockedForeColor) = 8421504 End With With .Items .AddItem("000") .AddItem("111") .AddItem("222") End With End With |
| 403 |
How to set background color for a locked, or read only edit control
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.EditType .Locked = True .Option(EXG2ANTTLib.EditorOptionEnum.exEditLockedBackColor) = 8421504 End With With .Items .AddItem("000") .AddItem("111") .AddItem("222") End With End With |
| 402 |
How to set the number of characters selected, when an EditType editor is opened
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.EditType .Option(EXG2ANTTLib.EditorOptionEnum.exEditSelLength) = 1 End With With .Items .AddItem("000") .AddItem("111") .AddItem("222") End With End With |
| 401 |
How to set the starting point of text selected, when an EditType editor is opened
Dim var_Editor With AxG2antt1 var_Editor = .Columns.Add("Edit").Editor With var_Editor .EditType = EXG2ANTTLib.EditTypeEnum.EditType .Option(EXG2ANTTLib.EditorOptionEnum.exEditSelStart) = 1 .Option(EXG2ANTTLib.EditorOptionEnum.exEditSelLength) = 1 End With With .Items .AddItem("000") .AddItem("111") .AddItem("222") End With End With |















